home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 27 / CU Amiga Magazine's Super CD-ROM 27 (1998)(EMAP Images)(GB)[!][issue 1998-10].iso / CUCD / PowerPC / vbcc / machines / amigawos / libsrc / stdio / fsetpos.c < prev    next >
C/C++ Source or Header  |  1998-08-02  |  116b  |  10 lines

  1. #include <stdio.h>
  2.  
  3. #undef fsetpos
  4.  
  5. int fsetpos(FILE *f,const fpos_t *ptr)
  6. {
  7.     return(fseek(f,*ptr,SEEK_SET));
  8. }
  9.  
  10.